Convert files with only CRLF line endings to pure LF WebIDL/tests/submissions/W3C/valid/idl/documentation-dos.widl was left as CRLF because the name makes it look intentional. 3 files with mixed line endings remain: cors/resources/cors-headers.asis html/semantics/embedded-content-0/the-canvas-element/size.attributes.parse.whitespace.html old-tests/submission/Opera/media/track/webvtt/parsing/support/newlines.vtt To verify that this commit makes no other changes: $ git diff --name-only HEAD^ | xargs unix2dos $ git diff HEAD^ # should show nothing 
diff --git a/XMLHttpRequest/send-entity-body-document.htm b/XMLHttpRequest/send-entity-body-document.htm index ca22bd0..837fd7a 100644 --- a/XMLHttpRequest/send-entity-body-document.htm +++ b/XMLHttpRequest/send-entity-body-document.htm 
@@ -1,30 +1,30 @@ -<!doctype html>  -<html>  - <head>  - <title>XMLHttpRequest: send() - Document</title>  - <script src="/resources/testharness.js"></script>  - <script src="/resources/testharnessreport.js"></script>  - <link rel="help" href="http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#the-send()-method" data-tested-assertations="/following::ol/li[4]" />  - <link rel="help" href="http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#dom-XMLHttpRequest-send-document" data-tested-assertations="/following::dd" />  - </head>  - <body>  - <div id="log"></div>  - <script>  - function request(input, isHTML) {  - test(function() {  - var client = new XMLHttpRequest()  - client.open("POST", "resources/content.py", false)  - client.send(input)  - if(isHTML)  - assert_equals(client.responseText, "<html><head><\/head><body>\uFFFD<\/body><\/html>")  - else  - assert_true(client.responseText.indexOf("<\uFFFD\/>") != -1)  - assert_equals(client.responseXML, null)  - })  - }  - function init(fr, isHTML) { request(fr.contentDocument, isHTML) }  - </script>  - <iframe src='data:text/xml;charset=windows-1252,<%FF/>' onload="init(this, false)"></iframe>  - <iframe src='data:text/html;charset=windows-1252,%FF' onload="init(this, true)"></iframe>  - </body>  -</html>  +<!doctype html> +<html> + <head> + <title>XMLHttpRequest: send() - Document</title> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <link rel="help" href="http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#the-send()-method" data-tested-assertations="/following::ol/li[4]" />  + <link rel="help" href="http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#dom-XMLHttpRequest-send-document" data-tested-assertations="/following::dd" />  + </head> + <body> + <div id="log"></div> + <script> + function request(input, isHTML) { + test(function() { + var client = new XMLHttpRequest() + client.open("POST", "resources/content.py", false) + client.send(input) + if(isHTML) + assert_equals(client.responseText, "<html><head><\/head><body>\uFFFD<\/body><\/html>") + else + assert_true(client.responseText.indexOf("<\uFFFD\/>") != -1) + assert_equals(client.responseXML, null) + }) + } + function init(fr, isHTML) { request(fr.contentDocument, isHTML) } + </script> + <iframe src='data:text/xml;charset=windows-1252,<%FF/>' onload="init(this, false)"></iframe> + <iframe src='data:text/html;charset=windows-1252,%FF' onload="init(this, true)"></iframe> + </body> +</html>